home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / smaltalk / gnu_st.lha / gnu_st / smalltalk-1.1.1 / initialize.st < prev    next >
Text File  |  1991-09-12  |  2KB  |  59 lines

  1. "======================================================================
  2. |
  3. |   Initialize various Smalltalk classes
  4. |
  5.  ======================================================================"
  6.  
  7.  
  8. "======================================================================
  9. |
  10. | Copyright (C) 1990, 1991 Free Software Foundation, Inc.
  11. | Written by Steve Byrne.
  12. |
  13. | This file is part of GNU Smalltalk.
  14. |
  15. | GNU Smalltalk is free software; you can redistribute it and/or modify it
  16. | under the terms of the GNU General Public License as published by the Free
  17. | Software Foundation; either version 1, or (at your option) any later version.
  18. | GNU Smalltalk is distributed in the hope that it will be useful, but WITHOUT
  19. | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
  20. | FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
  21. | details.
  22. | You should have received a copy of the GNU General Public License along with
  23. | GNU Smalltalk; see the file COPYING.  If not, write to the Free Software
  24. | Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  
  25. |
  26.  ======================================================================"
  27.  
  28.  
  29. "
  30. |     Change Log
  31. | ============================================================================
  32. | Author       Date       Change 
  33. | sbyrne     24 May 89      created.
  34. |
  35. "
  36.  
  37. "This file is loaded after all the kernel Smalltalk classes have been loaded.
  38. It generally performs any initializations that might depend on the full
  39. Smalltalk class hierarchy being defined. After this is file is loaded, 
  40. a couple of random class definitions are loaded (currently CFunc and Autoload)
  41. and then the binary image is saved."
  42.  
  43.  
  44. Date initialize!
  45.  
  46.  
  47. Smalltalk initialize!
  48.  
  49. KernelInitialized _ true!
  50.  
  51. "
  52. ""Smalltalk addInit: [ 'Welcome to Smalltalk!!!' print.
  53. ""                     Character nl print ]!
  54. ""Smalltalk addInit: [ 'I hope you like your stay' print.
  55. ""                     Character nl print ]!
  56. "
  57.